Skip to main content
Feedback

Logic steps

Logic steps direct the flow of documents through the process.

Logic stepsDescription
BranchCreates a copy of a document and passes it down to each branch in sequential order. A branch is executed to completion before the next branch is executed. If a document errors on one branch, it will not continue down subsequent branches.
RouteRoutes documents conditionally down different paths based on some value. Routing values can be static or dynamically pulled from document properties or actual document data.
CleanseRepairs or rejects documents by validating field-level restrictions defined by the data profile.
DecisionRoutes documents based on a true/false comparison of two values. Comparison values can be static or dynamically pulled from document properties or actual document data.
ExceptionTerminates the document execution and generates a user-defined error.
StopEnds the current execution path without generating an error.
Return DocumentsReturns the documents to the calling source point.
Flow ControlControls document data flow and system resource management.
Business RulesChecks multiple "business rules" to determine if the given document should be accepted or rejected.
Try/CatchCaptures document-level errors for one to many document instances that fail during an execution. It can optionally be set to capture process errors as well as document errors.